8fc5846bda66f0ca6e1173ff388a0c9c57e751f0,clc/modules/msgs/src/main/java/com/eucalyptus/component/ComponentRegistrationHandler.java,ComponentRegistrationHandler,register,#Component#String#String#String#number#,74
Before Change
try {
final ServiceConfiguration newComponent = builder.add( partition, name, hostName, port );
try {
component.enableTransition( newComponent );
} catch ( Exception ex ) {
LOG.error( ex, ex );
}
After Change
try {
final ServiceConfiguration newComponent = builder.add( partition, name, hostName, port );
try {
component.enableTransition( newComponent ).get( );
} catch ( Throwable ex ) {
LOG.error( ex, ex );
}